home *** CD-ROM | disk | FTP | other *** search
/ Leonardo the Inventor / Leonardo The Inventor (93026)(Broderbund)(Riverdeep)(2004).iso / LEOWINMV / FORTGAME.DIR / 00273_Script_Utility scripts < prev    next >
Text File  |  1996-03-20  |  1KB  |  43 lines

  1. --------------------------------------
  2.  
  3. on makeCastList
  4.   global theList
  5.   put empty into theList
  6.   repeat with C = 73 to 96
  7.     put (the name of cast C)& return after theList
  8.   end repeat  
  9. end makeCastList
  10.  
  11. on numberCast
  12.   repeat with C = 73 to 96
  13.     set the name of cast C to "R "&C - 72
  14.   end repeat
  15. end numberCast
  16.  
  17. on showKeyCode
  18.   put the keyCode into field "keyCode"
  19.   dontPassEvent
  20. end showKeyCode
  21.  
  22. on recordSpots
  23.   global theList
  24.   put empty into theList
  25.   when keydown then recordOne 14
  26. end recordSpots
  27.  
  28. on recordOne whichSprite
  29.   global theList
  30.   put (the mouseH - the locH of sprite whichSprite)&& (the mouseV - the locV of sprite whichSprite)&return after theList
  31. end recordOne
  32.  
  33. on doublePositions whichCast
  34.   global destText
  35.   set destText = " "
  36.   set sourceText = the text of cast whichCast
  37.   set numLines = the number of lines in sourceText
  38.   repeat with L = 1 to numLines
  39.     put line L of sourceText into line (L*2) -1 of destText 
  40.     put line L of sourceText into line (L*2)    of destText 
  41.   end repeat
  42.   put destText
  43. end doublePositions